feat(cmd): add minor CLI flags#217
Conversation
✅ Deploy Preview for devsydev canceled.
|
|
Warning Rate limit exceeded
To keep reviews running without waiting, you can enable usage-based add-on for your organization. This allows additional reviews beyond the hourly cap. Account admins can enable it under billing. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (19)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
c362d42 to
ec562f1
Compare
Add 15 missing CLI flags that align with devcontainer CLI parity: - up: --skip-post-create, --skip-post-start, --skip-post-attach, --container-user, --remote-user - build: --no-cache, --image-name, --no-build - exec: --container-data-folder, --skip-post-create - run-user-commands: --skip-post-create, --skip-post-start, --skip-post-attach, --skip-on-create, --skip-update-content Wire skip flags through lifecycle hook execution so skipped phases are logged and excluded from the hook pipeline.
e4233fe to
2378063
Compare
Summary
Adds 15 missing CLI flags across the up, build, exec, and run-user-commands commands to reach devcontainer CLI parity:
--skip-post-create,--skip-post-start,--skip-post-attach,--container-user,--remote-user--no-cache,--image-name,--no-build--container-data-folder,--skip-post-create--skip-post-create,--skip-post-start,--skip-post-attach,--skip-on-create,--skip-update-contentSkip flags are wired through the lifecycle hook execution pipeline so skipped phases are logged and excluded. Container-user and remote-user override the devcontainer.json values when specified. No-cache passes through to docker buildx. Image-name overrides the computed image tag. No-build prevents image building entirely.